That test breaks locally (and in CI it seems?), so at least print the
values we see.
name=gtk-query-settings
result=$TEST_RESULT_DIR/$name.out
$GTK_QUERY_SETTINGS 2>/dev/null >$result
-if [ $(wc -l $result | cut -f1 -d' ') -eq 50 ]; then
- echo "ok 1 $name"
+EXPECTED=50
+SEEN=$(wc -l $result | cut -f1 -d' ')
+
+if [ $SEEN -eq $EXPECTED ]; then
+ echo "ok 1 $name."
else
- echo "not ok 1 $name"
+ echo "not ok 1 $name. Expected: $EXPECTED. Seen: $SEEN"
fi